home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / clib / include / stdlib.h < prev    next >
C/C++ Source or Header  |  1996-10-19  |  412b  |  19 lines

  1. #ifndef _STDLIB_H
  2. #define _STDLIB_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: stdlib.h,v 1.1 1996/10/19 16:56:30 aros Exp $
  7.  
  8.     Desc: ANSI-C header file stdlib.h
  9.     Lang: english
  10. */
  11. #ifndef _SYS_TYPES_H
  12. #   include <sys/types.h>
  13. #endif
  14.  
  15. void qsort(void *array, size_t count, size_t elementsize,
  16.     int (*comparefunction)(const void * element1, const void * element2));
  17.  
  18. #endif /* _STDLIB_H */
  19.